JAVA의 String, StringBuilder class에서 제공되어야 할 몇 기능을 제공하고, 구분된 문자열 간의 비교 기능도 제공 (ex. csv)
isEmpty()
org.springframework.util.StringUtils.isEmpty
문자열이 빈 문자열이거나 null인 경우 true -> “” or null
StringUtils.isEmpty(null) = true
StringUtils.isEmpty("") = true
StringUtils.isEmpty(" ") = false
StringUtils.isEmpty("Hello") = false
hasLength()
isEmpty()와 반대 -> !isEmpty()
StringUtils.hasLength(null) = false
StringUtils.hasLength("") = false
StringUtils.hasLength(" ") = true
StringUtils.hasLength("Hello") = true